home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / games1 / nfapatch.lha / GloomDeluxe < prev    next >
Text File  |  1996-02-03  |  1KB  |  67 lines

  1. ;Script was created by PK'95,96
  2.  
  3. cd MISC
  4. SET World `REQUESTCHOICE "GloomDeluxe Selector" "Which world do you wanna play?" Spacehulk GothicTomb Hell "Last Used"`
  5.  
  6. if $World NOT EQ 0
  7.  SET Level `REQUESTCHOICE "GloomDeluxe Selector" "Which level do you wanna play?" 1 2 3 4 5 6 7 All` 
  8.  
  9.  if $Level EQ 0
  10.   copy Script$World to Script
  11.   Skip End
  12.  endif
  13.  
  14.  echo ";GloomDeluxe Script by PK'95,96" > Script
  15.  
  16.  if $World EQ 1
  17.   echo pict_spacehulk >> Script
  18.   echo tile_1 >> Script 
  19.  endif
  20.  
  21.  if $World EQ 2
  22.   echo pict_gothic >> Script
  23.   echo tile_2 >> Script 
  24.  endif
  25.  
  26.  if $World EQ 3
  27.   echo pict_hell >> Script
  28.   echo tile_3 >> Script 
  29.  endif
  30.  
  31.  echo draw_ >> Script
  32.  echo show_ >> Script
  33.  echo "text_pk gloom world and level selector used!" >> Script
  34.  echo wait_ >> Script
  35.  echo dark_ >> Script
  36.  if $World EQ 1
  37.   echo play_map1_$Level >> Script
  38.  endif
  39.  if $World EQ 2
  40.   echo play_map3_$Level >> Script
  41.  endif
  42.  if $World EQ 3
  43.   echo play_map4_$Level >> Script
  44.  endif
  45.  
  46.  echo pict_theend >> Script
  47.  echo draw_ >> Script
  48.  echo show_ >> Script
  49.  echo "text_congratulations! you have finished selected level!" >> Script
  50.  echo wait_ >> Script
  51.  echo done_ >> Script
  52. endif
  53.  
  54. Lab End
  55. cd /
  56.  
  57. SET Engine `REQUESTCHOICE "GloomDeluxe Selector" "With which engine do you wanna play?" Old Deluxe Exit` 
  58. if $Engine EQ 1
  59.  gloom
  60. endif
  61. if $Engine EQ 2
  62.  gloom2
  63. endif
  64.  
  65. ;End of Start
  66.  
  67.